home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
IRIX 6.3 Development Libraries
/
SGI IRIX 6.3 Development Libraries.iso
/
dist6.3
/
gl_dev.idb
/
usr
/
share
/
src
/
OpenGL
/
demos
/
stonehenge
/
Roundwall.h.z
/
Roundwall.h
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-12-06
|
296 b
|
25 lines
#ifndef ROUNDWALL_H
#define ROUNDWALL_H
class Roundwall {
public:
Roundwall();
~Roundwall() {};
void draw();
void set_divisions(int d);
float height;
float radius;
private:
int divisions;
float *sint, *cost;
void delete_tables();
void compute_tables();
};
#endif